home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
mus
/
play
/
MP132src.lha
/
include
/
misc.h
< prev
next >
Wrap
C/C++ Source or Header
|
1991-11-07
|
460b
|
18 lines
/* Misc.h - Header file for miscellaneous modules - © 1991 Bryan Ford */
#ifndef BRY_MISC_H
#define BRY_MISC_H
/* String functions */
char * __regargs StripBlanks(char *str);
int Stricmp(char *a,char *b);
/* Case conversion */
char __regargs ToUpper(char c);
long __regargs ToUpperLong(long c4);
/* SPrintF.asm */
void __stdargs SPrintF(char *outbuf,char *formatstring,...);
void __stdargs VSPrintF(char *outbuf,char *formatstring,long *arguments);
#endif